type compress/flate.compressor

28 uses

	compress/flate (current package)
		deflate.go#L81: type compressor struct {
		deflate.go#L88: 	fill      func(*compressor, []byte) int // copy data to window
		deflate.go#L89: 	step      func(*compressor)             // process window
		deflate.go#L123: func (d *compressor) fillDeflate(b []byte) int {
		deflate.go#L163: func (d *compressor) writeBlock(tokens []token, index int) error {
		deflate.go#L180: func (d *compressor) fillWindow(b []byte) {
		deflate.go#L230: func (d *compressor) findMatch(pos int, prevHead int, prevLength int, lookahead int) (length, offset int, ok bool) {
		deflate.go#L282: func (d *compressor) writeStoredBlock(buf []byte) error {
		deflate.go#L331: func (d *compressor) encSpeed() {
		deflate.go#L368: func (d *compressor) initDeflate() {
		deflate.go#L380: func (d *compressor) deflate() {
		deflate.go#L513: func (d *compressor) fillStore(b []byte) int {
		deflate.go#L519: func (d *compressor) store() {
		deflate.go#L529: func (d *compressor) storeHuff() {
		deflate.go#L538: func (d *compressor) write(b []byte) (n int, err error) {
		deflate.go#L553: func (d *compressor) syncFlush() error {
		deflate.go#L568: func (d *compressor) init(w io.Writer, level int) (err error) {
		deflate.go#L574: 		d.fill = (*compressor).fillStore
		deflate.go#L575: 		d.step = (*compressor).store
		deflate.go#L578: 		d.fill = (*compressor).fillStore
		deflate.go#L579: 		d.step = (*compressor).storeHuff
		deflate.go#L583: 		d.fill = (*compressor).fillStore
		deflate.go#L584: 		d.step = (*compressor).encSpeed
		deflate.go#L593: 		d.fill = (*compressor).fillDeflate
		deflate.go#L594: 		d.step = (*compressor).deflate
		deflate.go#L601: func (d *compressor) reset(w io.Writer) {
		deflate.go#L630: func (d *compressor) close() error {
		deflate.go#L703: 	d    compressor